compress/flate.compressor.length (field)
13 uses
compress/flate (current package)
deflate.go#L114: length int
deflate.go#L372: d.length = minMatchLength - 1
deflate.go#L424: prevLength := d.length
deflate.go#L426: d.length = minMatchLength - 1
deflate.go#L437: d.length = newLength
deflate.go#L441: if d.fastSkipHashing != skipNever && d.length >= minMatchLength ||
deflate.go#L442: d.fastSkipHashing == skipNever && prevLength >= minMatchLength && d.length <= prevLength {
deflate.go#L446: d.tokens = append(d.tokens, matchToken(uint32(d.length-baseMatchLength), uint32(d.offset-baseMatchOffset)))
deflate.go#L454: if d.length <= d.fastSkipHashing {
deflate.go#L457: newIndex = d.index + d.length
deflate.go#L477: d.length = minMatchLength - 1
deflate.go#L482: d.index += d.length
deflate.go#L624: d.length = minMatchLength - 1
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |